home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / komunikace / k-ninja / setup-kninja_v2.exe / {app} / res / quirk.css < prev    next >
Cascading Style Sheet File  |  2005-11-18  |  12KB  |  283 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  25.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. @namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
  38.  
  39.  
  40. /* Quirk: input images have a blue border (b=28010) */ 
  41.  
  42. /* default border */
  43. input[type=image] {
  44.   border: 2px solid blue;
  45. }
  46.  
  47. /* border when disabled -- only change color to gray */
  48. input[type=image][disabled] {
  49.   border-color: GrayText;
  50. }
  51.  
  52.  
  53. /* Quirk: make orphaned LIs have inside bullet (b=1049) */
  54.  
  55. /* force inside position for orphaned lis */
  56. li {
  57.   list-style-position: inside; 
  58. }
  59.  
  60. /* restore outside position for lists inside LIs */
  61. li ul, li ol, li dir, li menu { 
  62.   list-style-position: outside; 
  63. }
  64.  
  65. /* undo previous two rules for properly nested lists */
  66.   ul ul,   ul ol,   ul dir,   ul menu,   ul li,
  67.   ol ul,   ol ol,   ol dir,   ol menu,   ol li,
  68.  dir ul,  dir ol,  dir dir,  dir menu,  dir li,
  69. menu ul, menu ol, menu dir, menu menu, menu li {
  70.   list-style-position: inherit;
  71. }
  72.  
  73.  
  74. /* Quirk: ensure that we get proper padding if the very first 
  75.  * node in an LI is another UL or OL. This is an ugly way to
  76.  * fix the problem, because it extends the LI up into what
  77.  * would otherwise appear to be the ULs space. (b=38832) */
  78.  
  79. /* Note: this fix will fail once we implement marker box 
  80.  * alignment correctly. */
  81. li > ul:-moz-first-node,
  82. li > ol:-moz-first-node {
  83.   padding-top: 1em;
  84. }
  85.  
  86.  
  87. /* Quirk: prevent bullet from resizing with the list item
  88.  *   see bug 97351
  89.  */
  90.  
  91. li::-moz-list-bullet {
  92.   font-size: -moz-initial;
  93. }
  94.  
  95.  
  96. table {
  97.   text-align: start;
  98.   white-space: normal; /* compatible with IE & spec */
  99.   line-height: normal;
  100.  
  101.   /* Quirk: cut off all font inheritance in tables except for family. */
  102.   font-size: -moz-initial;
  103.   font-weight: -moz-initial;
  104.   font-style: -moz-initial;
  105.   font-variant: -moz-initial;
  106. }
  107.  
  108.  
  109. /* Quirk: collapse top margin of BODY and TD and bottom margin of TD */
  110.  
  111. /*
  112.  * While it may seem simpler to use :-moz-first-node and :-moz-last-node without
  113.  * tags, it's slower, since we have to do the :-moz-first-node or :-moz-last-node
  114.  * check on every single element in the document.  If we list all the
  115.  * element names for which the UA stylesheet specifies a margin, the
  116.  * selectors will be hashed in the RuleHash and things will be much more
  117.  * efficient.
  118.  */
  119. body > form:-moz-first-node, td > form:-moz-first-node, th > form:-moz-first-node,
  120. body > p:-moz-first-node, td > p:-moz-first-node, th > p:-moz-first-node,
  121. body > dl:-moz-first-node, td > dl:-moz-first-node, th > dl:-moz-first-node,
  122. body > multicol:-moz-first-node, td > multicol:-moz-first-node, th > multicol:-moz-first-node,
  123. body > blockquote:-moz-first-node, td > blockquote:-moz-first-node, th > blockquote:-moz-first-node,
  124. body > h1:-moz-first-node, td > h1:-moz-first-node, th > h1:-moz-first-node,
  125. body > h2:-moz-first-node, td > h2:-moz-first-node, th > h2:-moz-first-node,
  126. body > h3:-moz-first-node, td > h3:-moz-first-node, th > h3:-moz-first-node,
  127. body > h4:-moz-first-node, td > h4:-moz-first-node, th > h4:-moz-first-node,
  128. body > h5:-moz-first-node, td > h5:-moz-first-node, th > h5:-moz-first-node,
  129. body > h6:-moz-first-node, td > h6:-moz-first-node, th > h6:-moz-first-node,
  130. body > listing:-moz-first-node, td > listing:-moz-first-node, th > listing:-moz-first-node,
  131. body > plaintext:-moz-first-node, td > plaintext:-moz-first-node, th > plaintext:-moz-first-node,
  132. body > xmp:-moz-first-node, td > xmp:-moz-first-node, th > xmp:-moz-first-node,
  133. body > pre:-moz-first-node, td > pre:-moz-first-node, th > pre:-moz-first-node,
  134. body > ul:-moz-first-node, td > ul:-moz-first-node, th > ul:-moz-first-node,
  135. body > menu:-moz-first-node, td > menu:-moz-first-node, th > menu:-moz-first-node,
  136. body > dir:-moz-first-node, td > dir:-moz-first-node, th > dir:-moz-first-node,
  137. body > ol:-moz-first-node, td > ol:-moz-first-node, th > ol:-moz-first-node {
  138.   margin-top: 0;
  139. }
  140.  
  141. td > p:-moz-last-node, th > p:-moz-last-node {
  142.   margin-bottom: 0;
  143. }
  144.  
  145. /* Similar as above, but for empty elements
  146.  *  collapse the bottom or top margins of empty elements
  147.  *  - see bug 97361
  148.  */
  149. body > form:-moz-only-whitespace:-moz-first-node, td > form:-moz-only-whitespace:-moz-first-node,
  150. th > form:-moz-only-whitespace:-moz-first-node, body > p:-moz-only-whitespace:-moz-first-node,
  151. td > p:-moz-only-whitespace:-moz-first-node, th > p:-moz-only-whitespace:-moz-first-node,
  152. body > dl:-moz-only-whitespace:-moz-first-node, td > dl:-moz-only-whitespace:-moz-first-node,
  153. th > dl:-moz-only-whitespace:-moz-first-node, body > multicol:-moz-only-whitespace:-moz-first-node,
  154. td > multicol:-moz-only-whitespace:-moz-first-node, th > multicol:-moz-only-whitespace:-moz-first-node,
  155. body > blockquote:-moz-only-whitespace:-moz-first-node, td > blockquote:-moz-only-whitespace:-moz-first-node,
  156. th > blockquote:-moz-only-whitespace:-moz-first-node, body > h1:-moz-only-whitespace:-moz-first-node,
  157. td > h1:-moz-only-whitespace:-moz-first-node, th > h1:-moz-only-whitespace:-moz-first-node,
  158. body > h2:-moz-only-whitespace:-moz-first-node, td > h2:-moz-only-whitespace:-moz-first-node,
  159. th > h2:-moz-only-whitespace:-moz-first-node, body > h3:-moz-only-whitespace:-moz-first-node,
  160. td > h3:-moz-only-whitespace:-moz-first-node, th > h3:-moz-only-whitespace:-moz-first-node,
  161. body > h4:-moz-only-whitespace:-moz-first-node, td > h4:-moz-only-whitespace:-moz-first-node,
  162. th > h4:-moz-only-whitespace:-moz-first-node, body > h5:-moz-only-whitespace:-moz-first-node,
  163. td > h5:-moz-only-whitespace:-moz-first-node, th > h5:-moz-only-whitespace:-moz-first-node,
  164. body > h6:-moz-only-whitespace:-moz-first-node, td > h6:-moz-only-whitespace:-moz-first-node,
  165. th > h6:-moz-only-whitespace:-moz-first-node, body > listing:-moz-only-whitespace:-moz-first-node,
  166. td > listing:-moz-only-whitespace:-moz-first-node, th > listing:-moz-only-whitespace:-moz-first-node,
  167. body > plaintext:-moz-only-whitespace:-moz-first-node, td > plaintext:-moz-only-whitespace:-moz-first-node,
  168. th > plaintext:-moz-only-whitespace:-moz-first-node, body > xmp:-moz-only-whitespace:-moz-first-node,
  169. td > xmp:-moz-only-whitespace:-moz-first-node, th > xmp:-moz-only-whitespace:-moz-first-node,
  170. body > pre:-moz-only-whitespace:-moz-first-node, td > pre:-moz-only-whitespace:-moz-first-node,
  171. th > pre:-moz-only-whitespace:-moz-first-node, body > ul:-moz-only-whitespace:-moz-first-node,
  172. td > ul:-moz-only-whitespace:-moz-first-node, th > ul:-moz-only-whitespace:-moz-first-node,
  173. body > menu:-moz-only-whitespace:-moz-first-node, td > menu:-moz-only-whitespace:-moz-first-node,
  174. th > menu:-moz-only-whitespace:-moz-first-node, body > dir:-moz-only-whitespace:-moz-first-node,
  175. td > dir:-moz-only-whitespace:-moz-first-node, th > dir:-moz-only-whitespace:-moz-first-node,
  176. body > ol:-moz-only-whitespace:-moz-first-node, td > ol:-moz-only-whitespace:-moz-first-node,
  177. th > ol:-moz-only-whitespace:-moz-first-node {
  178.   margin-bottom: 0;
  179. }
  180.  
  181. td > form:-moz-only-whitespace:-moz-last-node, th > form:-moz-only-whitespace:-moz-last-node,
  182. td > p:-moz-only-whitespace:-moz-last-node, th > p:-moz-only-whitespace:-moz-last-node,
  183. td > dl:-moz-only-whitespace:-moz-last-node, th > dl:-moz-only-whitespace:-moz-last-node,
  184. td > multicol:-moz-only-whitespace:-moz-last-node, th > multicol:-moz-only-whitespace:-moz-last-node,
  185. td > blockquote:-moz-only-whitespace:-moz-last-node, th > blockquote:-moz-only-whitespace:-moz-last-node,
  186. td > h1:-moz-only-whitespace:-moz-last-node, th > h1:-moz-only-whitespace:-moz-last-node,
  187. td > h2:-moz-only-whitespace:-moz-last-node, th > h2:-moz-only-whitespace:-moz-last-node,
  188. td > h3:-moz-only-whitespace:-moz-last-node, th > h3:-moz-only-whitespace:-moz-last-node,
  189. td > h4:-moz-only-whitespace:-moz-last-node, th > h4:-moz-only-whitespace:-moz-last-node,
  190. td > h5:-moz-only-whitespace:-moz-last-node, th > h5:-moz-only-whitespace:-moz-last-node,
  191. td > h6:-moz-only-whitespace:-moz-last-node, th > h6:-moz-only-whitespace:-moz-last-node,
  192. td > listing:-moz-only-whitespace:-moz-last-node, th > listing:-moz-only-whitespace:-moz-last-node,
  193. td > plaintext:-moz-only-whitespace:-moz-last-node, th > plaintext:-moz-only-whitespace:-moz-last-node,
  194. td > xmp:-moz-only-whitespace:-moz-last-node, th > xmp:-moz-only-whitespace:-moz-last-node,
  195. td > pre:-moz-only-whitespace:-moz-last-node, th > pre:-moz-only-whitespace:-moz-last-node,
  196. td > ul:-moz-only-whitespace:-moz-last-node, th > ul:-moz-only-whitespace:-moz-last-node,
  197. td > menu:-moz-only-whitespace:-moz-last-node, th > menu:-moz-only-whitespace:-moz-last-node,
  198. td > dir:-moz-only-whitespace:-moz-last-node, th > dir:-moz-only-whitespace:-moz-last-node,
  199. td > ol:-moz-only-whitespace:-moz-last-node, th > ol:-moz-only-whitespace:-moz-last-node {
  200.   margin-top: 0;
  201. }
  202.  
  203.  
  204. /* Quirk: support the ways of making PRE have wrapping */
  205.  
  206. pre[wrap], pre[cols], pre[width] {
  207.   white-space: -moz-pre-wrap;
  208. }
  209.  
  210.  
  211. /* Quirk: DD not in DL has text-indent instead of margin (b=5119) */
  212.  
  213. :not(dl) > dd {
  214.   display: inline;
  215.   margin: 0;
  216. }
  217.  
  218. :not(dl) > dd:before {
  219.   display: inline;
  220.   white-space: pre;
  221.   font-size: 1px;
  222.   line-height: 0;
  223.   content: "\A  ";
  224.   -moz-margin-end: 40px;
  225. }
  226.  
  227.  
  228. /* quirk to indent nested DL elements (b=8749) */
  229.  
  230. dl > dl {
  231.   display: block;
  232.   -moz-margin-start: 40px;
  233. }
  234.  
  235.  
  236. /* Quirk: MAP acts like an inline, not a block */
  237.  
  238. map {
  239.   display: inline;
  240. }
  241.  
  242.  
  243. /* Quirk: Make floated images have a margin  (b=58899) */
  244.  
  245. img[align=left] {
  246.   margin-right: 3px;
  247. }
  248.  
  249. img[align=right] {
  250.   margin-left: 3px;
  251. }
  252.  
  253.  
  254. /* Quirk: Make sure that the residual style tags' size info. 
  255.  * does not take precedence over heading tags' size. (b=77352)
  256.  * Note: This special attribute is set only for a residual 
  257.  * style tag within a heading tag.
  258.  */
  259.  
  260. /* XXX This is a potential performance problem.  This should not be
  261.  * using an attribute!
  262.  */
  263. *[_moz-rs-heading] { 
  264.   font-size: inherit !important; 
  265. }
  266.  
  267.  
  268. /*
  269.  * Quirk: Use border-box box sizing for text inputs, password inputs, and
  270.  * textareas.  (b=184478 on why we use content-box sizing in standards mode)
  271.  */
  272.  
  273. /* Note that all other <input>s already use border-box
  274.    sizing, so we're ok with this selector */
  275. input:not([type=image]), textarea {
  276.   -moz-box-sizing: border-box;
  277. }
  278.  
  279. /* Quirk: give form margin for compat (b=41806) */
  280. form{
  281.  margin: 0 0 1em 0;
  282. }
  283.